home *** CD-ROM | disk | FTP | other *** search
/ FishMarket 1.0 / FishMarket v1.0.iso / fishies / 276-300 / disk_280 / graph / graph.h < prev    next >
C/C++ Source or Header  |  1992-05-06  |  770b  |  30 lines

  1. /*
  2.  *                 GRAPH, Version 1.00 - 4 August 1989
  3.  *
  4.  *            Copyright 1989, David Gay. All Rights Reserved.
  5.  *            This software is freely redistrubatable.
  6.  */
  7.  
  8. /* Main include file, global types, etc */
  9. #ifndef GRAPH_H
  10. #define GRAPH_H
  11.  
  12. #include "list.h"
  13. #include "user/eval.h"
  14.  
  15. #define NOVAL 1.2345e308 /* This means no value (in xmin, xmax... style fields)
  16.  !!! */
  17. #define INOVAL -32768 /* idem, but for integer fields */
  18. /* Lemgths of various strings */
  19. #define VARLEN 10
  20. #define EXPRLEN 80
  21. #define FILELEN 256
  22.  
  23. extern list graph_list;              /* List of all graphs */
  24. extern context vars;                 /* List of all variables */
  25. extern const char *eval_messages[];  /* Text of eval error messages. What's it
  26. doing here ??? */
  27.  
  28. #endif
  29.  
  30.